home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / vsprintf.c,v < prev   
Text File  |  1991-12-02  |  3KB  |  149 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.05.18.17.15.51;  author rab;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.07.28.16.54.28;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.02.20.07.00;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @added forward declarations for static functions.
  32. @
  33. text
  34. @/* 
  35.  * vsprintf.c --
  36.  *
  37.  *    Source code for the "vsprintf" library procedure.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/vsprintf.c,v 1.1 88/07/28 16:54:28 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include <stdio.h>
  54. #include <varargs.h>
  55.  
  56. /*
  57.  * Forward references to procedure defined in this file:
  58.  */
  59.  
  60. static void    WriteProc();
  61.  
  62.  
  63. /*
  64.  *----------------------------------------------------------------------
  65.  *
  66.  * vsprintf --
  67.  *
  68.  *    Format and print one or more values, placing the output into
  69.  *    a string.  See the manual page for details of how the format
  70.  *    string is interpreted.  This procedure is identical to sprintf
  71.  *    except that the arguments have been prepackaged using varargs.
  72.  *
  73.  * Results:
  74.  *    The return value is a pointer to string, which has been
  75.  *    overwritten with formatted information.
  76.  *
  77.  * Side effects:
  78.  *    None.
  79.  *
  80.  *----------------------------------------------------------------------
  81.  */
  82.  
  83. char *
  84. vsprintf(string, format, args)
  85.     char *string;        /* Where to place result. */
  86.     char *format;        /* How to format result.  See man page
  87.                  * for details. */
  88.     va_list args;        /* Variable-length list of arguments,
  89.                  * assembled using the varargs macros. */
  90. {
  91.     FILE stream;
  92.  
  93.     Stdio_Setup(&stream, 0, 1, (unsigned char *) string, 5000, (void (*)()) 0,
  94.         WriteProc, (int (*)()) 0, (ClientData) 0);
  95.     (void) vfprintf(&stream, format, args);
  96.     putc(0, &stream);
  97.     return string;
  98. }
  99.  
  100. /*
  101.  *----------------------------------------------------------------------
  102.  *
  103.  * WriteProc --
  104.  *
  105.  *    This procedure is invoked when the "buffer" for the string
  106.  *    fills up.  Just give the string more space.
  107.  *
  108.  * Results:
  109.  *    None.
  110.  *
  111.  * Side effects:
  112.  *    The stream's "buffer" gets enlarged.
  113.  *
  114.  *----------------------------------------------------------------------
  115.  */
  116.  
  117. static void
  118. WriteProc(stream)
  119.     register FILE *stream;
  120. {
  121.     stream->writeCount = 5000;
  122. }
  123. @
  124.  
  125.  
  126. 1.2.1.1
  127. log
  128. @Initial branch for Sprite server.
  129. @
  130. text
  131. @d17 1
  132. a17 1
  133. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/vsprintf.c,v 1.2 89/05/18 17:15:51 rab Exp $ SPRITE (Berkeley)";
  134. @
  135.  
  136.  
  137. 1.1
  138. log
  139. @Initial revision
  140. @
  141. text
  142. @d17 1
  143. a17 1
  144. static char rcsid[] = "$Header: sprintf.c,v 1.2 88/07/11 16:02:26 ouster Exp $ SPRITE (Berkeley)";
  145. d27 1
  146. a27 1
  147. extern void    WriteProc();
  148. @
  149.